home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / dev / misc / egs.lha / EGS / EGS_Devels / Examples / EGS_Requester / includes.c < prev    next >
C/C++ Source or Header  |  1993-02-17  |  1KB  |  60 lines

  1. /*
  2.  * Extra Amiga includes
  3.  */
  4.  
  5. #define __DICE_INLINE
  6.  
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <string.h>
  10. #include <exec/types.h>
  11. #include <exec/memory.h>
  12. #include <exec/io.h>
  13. #include <exec/nodes.h>
  14. #include <exec/interrupts.h>
  15. #include <exec/devices.h>
  16. #include <devices/input.h>
  17. #include <devices/inputevent.h>
  18. #include <proto/all.h>
  19. /*
  20.  * These are all EGS includes
  21.  *
  22.  */
  23.  
  24.  
  25. #include <egs/egs.h>
  26. #include <egs/egsblit.h>
  27. #include <egs/egslayers.h>
  28. #include <egs/egsgfx.h>
  29. #include <egs/egsintui.h>
  30. #include <egs/egsgadbox.h>
  31. #include <egs/egsrequest.h>
  32. #include <egs/egb/gbmenuselect.h>
  33. #include <egs/egb/gbradio.h>
  34. #include <egs/egb/gbscrollbox.h>
  35. #include <egs/egb/gbselect.h>
  36. #include <egs/egb/gbsets.h>
  37. #include <egs/egb/gbtextinfo.h>
  38.  
  39. /*
  40.  * Include proto files
  41.  * These include the pragma files.
  42.  */
  43.  
  44. #include <egs/proto/egs.h>
  45. #include <egs/proto/egsblit.h>
  46. #include <egs/proto/egslayers.h>
  47. #include <egs/proto/egsgfx.h>
  48. #include <egs/proto/egsintui.h>
  49. #include <egs/proto/egsgadbox.h>
  50. #include <egs/proto/egsrequest.h>
  51. #include <egs/proto/gbmenuselect.h>
  52. #include <egs/proto/gbradio.h>
  53. #include <egs/proto/gbscrollbox.h>
  54. #include <egs/proto/gbselect.h>
  55. #include <egs/proto/gbsets.h>
  56. #include <egs/proto/gbtextinfo.h>
  57.  
  58. /*
  59. */
  60.